summary refs log tree commit diff
path: root/pkgs/development/python-modules/fasteners/default.nix
blob: 50a6dbf40df6ae4f9225ded870e097c97c151480 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{ stdenv
, buildPythonPackage
, fetchPypi
, six
, monotonic
, testtools
, isPy3k
, nose
, futures
}:

buildPythonPackage rec {
  pname = "fasteners";
  version = "0.15";

  src = fetchPypi {
    inherit pname version;
    sha256 = "3a176da6b70df9bb88498e1a18a9e4a8579ed5b9141207762368a1017bf8f5ef";
  };

  propagatedBuildInputs = [ six monotonic ];

  checkInputs = [ testtools nose ] ++ stdenv.lib.optionals (!isPy3k) [ futures ];

  checkPhase = ''
    nosetests
  '';

  meta = with stdenv.lib; {
    description = "A python package that provides useful locks";
    homepage = https://github.com/harlowja/fasteners;
    license = licenses.asl20;
  };

}