summary refs log tree commit diff
path: root/pkgs/development/python-modules/schedule/default.nix
blob: 596ed993233e81104d3a5d5f113b6008f6c1bbac (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
{ lib, stdenv
, buildPythonPackage
, fetchPypi
, mock
}:

buildPythonPackage rec {
  pname = "schedule";
  version = "0.6.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "f9fb5181283de4db6e701d476dd01b6a3dd81c38462a54991ddbb9d26db857c9";
  };

  buildInputs = [ mock ];

  meta = with lib; {
    description = "Python job scheduling for humans";
    homepage = "https://github.com/dbader/schedule";
    license = licenses.mit;
  };

}