depot/third_party/nixpkgs/pkgs/development/python-modules/pyasn1/default.nix
Default email 22017988c6 Project import generated by Copybara.
GitOrigin-RevId: c777cdf5c564015d5f63b09cc93bef4178b19b01
2022-04-27 11:35:20 +02:00

20 lines
501 B
Nix

{ lib, buildPythonPackage, fetchPypi, }:
buildPythonPackage rec {
pname = "pyasn1";
version = "0.4.8";
src = fetchPypi {
inherit pname version;
sha256 = "aef77c9fb94a3ac588e87841208bdec464471d9871bd5050a287cc9a475cd0ba";
};
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 ];
};
}