Skip to content

Instantly share code, notes, and snippets.

@exarkun
Created July 4, 2017 14:47
Show Gist options
  • Save exarkun/05aa6d211f43328c727e0ecc71b33f67 to your computer and use it in GitHub Desktop.
Save exarkun/05aa6d211f43328c727e0ecc71b33f67 to your computer and use it in GitHub Desktop.
"Automat" = python.mkDerivation {
name = "Automat-0.6.0";
src = pkgs.fetchurl { url = "https://pypi.python.org/packages/de/05/b8e453085cf8a7f27bb1226596f4ccf5cc9e758377d60284f990bbdc592c/Automat-0.6.0.tar.gz"; sha256 = "3c1fd04ecf08ac87b4dd3feae409542e9bf7827257\
097b2b6ed5692f69d6f6a8"; };
doCheck = commonDoCheck;
buildInputs = commonBuildInputs;
propagatedBuildInputs = [
self."Twisted"
self."attrs"
self."six"
];
meta = with pkgs.stdenv.lib; {
homepage = "https://github.com/glyph/Automat";
license = licenses.mit;
description = "Self-service finite-state machines for the programmer on the go.";
};
};
"Twisted" = python.mkDerivation {
name = "Twisted-17.5.0";
src = pkgs.fetchurl { url = "https://pypi.python.org/packages/31/bf/7f86a8f8b9778e90d8b2921e9f442a8c8aa33fd2489fc10f236bc8af1749/Twisted-17.5.0.tar.bz2"; sha256 = "f198a494f0df2482f7c5f99d7f3eef33d22763ff\
c76641b36fec476b878002ea"; };
doCheck = commonDoCheck;
buildInputs = commonBuildInputs;
propagatedBuildInputs = [
self."Automat"
self."constantly"
self."cryptography"
self."hyperlink"
self."idna"
self."incremental"
self."pyOpenSSL"
self."pyasn1"
self."service-identity"
self."zope.interface"
];
meta = with pkgs.stdenv.lib; {
homepage = "http://twistedmatrix.com/";
license = licenses.mit;
description = "An asynchronous networking framework written in Python";
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment