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

19 lines
446 B
Nix
Raw Normal View History

2017-11-03 00:35:11 +01:00
{ stdenv, buildPythonPackage, fetchPypi, }:
buildPythonPackage rec {
pname = "pyasn1";
2019-01-17 16:13:05 +01:00
version = "0.4.5";
2017-11-03 00:35:11 +01:00
src = fetchPypi {
inherit pname version;
2019-01-17 16:13:05 +01:00
sha256 = "da2420fe13a9452d8ae97a0e478adde1dee153b11ba832a95b223a2ba01c10f7";
2017-11-03 00:35:11 +01:00
};
meta = with stdenv.lib; {
description = "ASN.1 tools for Python";
homepage = http://pyasn1.sourceforge.net/;
license = "mBSD";
platforms = platforms.unix; # arbitrary choice
};
}