1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-15 09:03:48 +00:00
nixpkgs/pkgs/development/python-modules/pyasn1/default.nix

20 lines
478 B
Nix
Raw Normal View History

2017-11-02 23:35:11 +00:00
{ stdenv, buildPythonPackage, fetchPypi, }:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "pyasn1";
2017-12-30 11:25:45 +00:00
version = "0.4.2";
2017-11-02 23:35:11 +00:00
src = fetchPypi {
inherit pname version;
2017-12-30 11:25:45 +00:00
sha256 = "d258b0a71994f7770599835249cece1caef3c70def868c4915e6e5ca49b67d15";
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
};
}