python.pkgs.pyasn1: 0.1.9 -> 0.3.4
This commit is contained in:
parent
206a3c7653
commit
a478343856
19
pkgs/development/python-modules/pyasn1/default.nix
Normal file
19
pkgs/development/python-modules/pyasn1/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi, }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "pyasn1";
|
||||
version = "0.3.4";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "06hhy38jhwh95gpn8f03cr439273fsfsh4vhd5024r86nh5gyiir";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "ASN.1 tools for Python";
|
||||
homepage = http://pyasn1.sourceforge.net/;
|
||||
license = "mBSD";
|
||||
platforms = platforms.unix; # arbitrary choice
|
||||
};
|
||||
}
|
@ -15524,21 +15524,7 @@ in {
|
||||
};
|
||||
|
||||
|
||||
pyasn1 = buildPythonPackage rec {
|
||||
name = "pyasn1-0.1.9";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/p/pyasn1/${name}.tar.gz";
|
||||
sha256 = "0zraxni14bqi20kr4bi6nwsh32aibz0fq0xaczfisw0zdpcsqg45";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "ASN.1 tools for Python";
|
||||
homepage = http://pyasn1.sourceforge.net/;
|
||||
license = "mBSD";
|
||||
platforms = platforms.unix; # arbitrary choice
|
||||
};
|
||||
};
|
||||
pyasn1 = callPackage ../development/python-modules/pyasn1 { };
|
||||
|
||||
pyasn1-modules = buildPythonPackage rec {
|
||||
name = "pyasn1-modules-${version}";
|
||||
|
Loading…
Reference in New Issue
Block a user