Files
nixpkgs/pkgs/development/python-modules/pybase64/default.nix
T

26 lines
576 B
Nix
Raw Normal View History

2018-04-04 20:13:41 +02:00
{ buildPythonPackage, stdenv, fetchPypi, six, pytest }:
2018-02-04 14:08:02 +01:00
buildPythonPackage rec {
pname = "pybase64";
2018-06-12 18:47:04 +02:00
version = "0.4.0";
2018-02-04 14:08:02 +01:00
src = fetchPypi {
inherit pname version;
2018-06-12 18:47:04 +02:00
sha256 = "d415057b17bd8acf65e7a2f5d25e468b5b39df3290c7d9dbb75c0785afbdf3cf";
2018-02-04 14:08:02 +01:00
};
propagatedBuildInputs = [ six ];
2018-04-04 20:13:41 +02:00
checkInputs = [ pytest ];
2018-02-04 14:08:02 +01:00
checkPhase = ''
2018-04-04 20:13:41 +02:00
py.test
2018-02-04 14:08:02 +01:00
'';
meta = with stdenv.lib; {
homepage = https://pypi.python.org/pypi/pybase64;
description = "Fast Base64 encoding/decoding";
license = licenses.bsd2;
maintainers = with maintainers; [ ma27 ];
};
}