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

19 lines
446 B
Nix
Raw Normal View History

2017-11-02 23:35:11 +00:00
{ stdenv, buildPythonPackage, fetchPypi, }:
buildPythonPackage rec {
pname = "pyasn1";
2018-05-28 12:18:57 +00:00
version = "0.4.3";
2017-11-02 23:35:11 +00:00
src = fetchPypi {
inherit pname version;
2018-05-28 12:18:57 +00:00
sha256 = "fb81622d8f3509f0026b0683fe90fea27be7284d3826a5f2edf97f69151ab0fc";
2017-11-02 23:35:11 +00:00
};
meta = with stdenv.lib; {
description = "ASN.1 tools for Python";
homepage = http://pyasn1.sourceforge.net/;
license = "mBSD";
platforms = platforms.unix; # arbitrary choice
};
}