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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
501 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, }:
2017-11-02 23:35:11 +00:00
buildPythonPackage rec {
pname = "pyasn1";
2019-11-19 14:35:38 +00:00
version = "0.4.8";
2017-11-02 23:35:11 +00:00
src = fetchPypi {
inherit pname version;
2019-11-19 14:35:38 +00:00
sha256 = "aef77c9fb94a3ac588e87841208bdec464471d9871bd5050a287cc9a475cd0ba";
2017-11-02 23:35:11 +00:00
};
pythonImportsCheck = [ "pyasn1" ];
meta = with lib; {
description = "Generic ASN.1 library for Python";
homepage = "https://github.com/etingof/pyasn1";
license = licenses.bsd2;
maintainers = with maintainers; [ SuperSandro2000 ];
2017-11-02 23:35:11 +00:00
};
}