depot/third_party/nixpkgs/pkgs/development/python-modules/pyasn/default.nix
Default email 792b51d22f Project import generated by Copybara.
GitOrigin-RevId: d5f237872975e6fb6f76eef1368b5634ffcd266f
2022-02-20 05:27:41 +00:00

22 lines
599 B
Nix

{ lib, buildPythonPackage, fetchPypi, }:
buildPythonPackage rec {
pname = "pyasn";
version = "1.6.1";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-6UK1SRY2Pse4tw6urs0OtOQe8bz0ojl7KabXFfzN+SU=";
};
doCheck = false; # Tests require internet connection which wont work
pythonImportsCheck = [ "pyasn" ];
meta = with lib; {
description = "Offline IP address to Autonomous System Number lookup module";
homepage = "https://github.com/hadiasghari/pyasn";
license = with licenses; [ bsdOriginal mit ];
maintainers = with maintainers; [ onny ];
};
}