Files
nixpkgs/pkgs/development/python-modules/pyasn1-modules/default.nix
T

23 lines
602 B
Nix
Raw Normal View History

2017-11-02 23:35:52 +00:00
{ stdenv, buildPythonPackage, fetchPypi, pyasn1, isPyPy }:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "pyasn1-modules";
2017-12-30 12:25:48 +01:00
version = "0.2.1";
2017-11-02 23:35:52 +00:00
disabled = isPyPy;
src = fetchPypi {
inherit pname version;
2017-12-30 12:25:48 +01:00
sha256 = "af00ea8f2022b6287dc375b2c70f31ab5af83989fc6fe9eacd4976ce26cd7ccc";
2017-11-02 23:35:52 +00:00
};
propagatedBuildInputs = [ pyasn1 ];
meta = with stdenv.lib; {
description = "A collection of ASN.1-based protocols modules";
homepage = https://pypi.python.org/pypi/pyasn1-modules;
license = licenses.bsd3;
platforms = platforms.unix; # same as pyasn1
};
}