mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
0f3a51363f
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.6-schedule/versions
25 lines
440 B
Nix
25 lines
440 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, mock
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "schedule";
|
|
version = "0.5.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0nrkbbmr9k1bqfmv9wg5aslxzkkifcd62fm04n6844nf5mya00qh";
|
|
};
|
|
|
|
buildInputs = [ mock ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Python job scheduling for humans";
|
|
homepage = https://github.com/dbader/schedule;
|
|
license = licenses.mit;
|
|
};
|
|
|
|
}
|