pythonPackages.srptools: init at 0.2.0

This commit is contained in:
elseym 2019-01-01 20:49:22 +01:00
parent 46e7ce0526
commit f3dacb3580
No known key found for this signature in database
GPG key ID: 8696D1F9E5C020D2
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ stdenv, buildPythonPackage, fetchPypi, six, pytest, pytestrunner }:
buildPythonPackage rec {
pname = "srptools";
version = "0.2.0";
src = fetchPypi {
inherit pname version;
sha256 = "0g0jdkblnd3wv5xgb33g6sfgqnhdcs8a3gqzp5gshq2vawdh8p37";
};
propagatedBuildInputs = [ six ];
checkInputs = [ pytest pytestrunner ];
meta = with stdenv.lib; {
description = "Python-Tools to implement Secure Remote Password (SRP) authentication";
homepage = https://github.com/idlesign/srptools;
license = licenses.bsd3;
maintainers = with maintainers; [ elseym ];
};
}

View file

@ -5139,6 +5139,8 @@ in {
importlib-resources = callPackage ../development/python-modules/importlib-resources {};
srptools = callPackage ../development/python-modules/srptools { };
});
in fix' (extends overrides packages)