6b999f3c42
Did not test all packages. Likely we'll have some breakage.
22 lines
486 B
Nix
22 lines
486 B
Nix
{ lib
|
|
, fetchPypi
|
|
, buildPythonPackage
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "certifi";
|
|
version = "2017.4.17";
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "f7527ebf7461582ce95f7a9e03dd141ce810d40590834f4ec20cddd54234c10a";
|
|
};
|
|
|
|
meta = {
|
|
homepage = http://certifi.io/;
|
|
description = "Python package for providing Mozilla's CA Bundle";
|
|
license = lib.licenses.isc;
|
|
maintainers = with lib.maintainers; [ koral ];
|
|
};
|
|
} |