nixpkgs/pkgs/development/python-modules/srptools/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
595 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, six, pytest, pytest-runner }:
2019-01-01 20:49:22 +01:00
buildPythonPackage rec {
pname = "srptools";
version = "1.0.1";
2019-01-01 20:49:22 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "7fa4337256a1542e8f5bb4bed19e1d9aea98fe5ff9baf76693342a1dd6ac7c96";
2019-01-01 20:49:22 +01:00
};
propagatedBuildInputs = [ six ];
checkInputs = [ pytest pytest-runner ];
2019-01-01 20:49:22 +01:00
meta = with lib; {
2019-01-01 20:49:22 +01:00
description = "Python-Tools to implement Secure Remote Password (SRP) authentication";
homepage = "https://github.com/idlesign/srptools";
2019-01-01 20:49:22 +01:00
license = licenses.bsd3;
maintainers = with maintainers; [ ];
2019-01-01 20:49:22 +01:00
};
}