1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 06:01:15 +00:00

python3Packages.secure: 0.2.1 -> 0.3.0

This commit is contained in:
Jonathan Ringer 2021-06-18 18:39:14 -07:00 committed by Martin Weinelt
parent 478285e001
commit 9c208b3e7b

View file

@ -4,15 +4,15 @@
}:
buildPythonPackage rec {
version = "0.2.1";
version = "0.3.0";
pname = "secure";
disabled = isPy27;
src = fetchFromGitHub {
owner = "typeerror";
repo = "secure.py";
rev = "v${version}";
sha256 = "1nbxwi0zccrha6js14ibd596kdi1wpqr7jgs442mqclw4b3f77q5";
rev = version;
sha256 = "1ajz1nx0nnhsc80xbgbc42ib2h08qnccvsp5i583rd9b0f9pklwk";
};
propagatedBuildInputs = [ maya requests ];