summary refs log tree commit diff
path: root/pkgs/development/python-modules/ltc_scrypt/default.nix
blob: 273571c66e1f3e049d164d6b8b33ee841248cc5c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "ltc_scrypt";
  version = "1.0";
  name = "${pname}-${version}";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1h90hh3iw4i7zs7jgskdjlk8gi97b3v2zqsxdfwdvhrrnhpvv856";
  };

  meta = with stdenv.lib; {
    description = "Bindings for scrypt proof of work used by Litecoin";
    homepage = https://pypi.python.org/pypi/ltc_scrypt;
    maintainers = with maintainers; [ asymmetric ];
    license = licenses.bsd2;
  };
}