mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
22 lines
395 B
Nix
22 lines
395 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "Yapsy";
|
|
version = "1.12.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "12rznbnswfw0w7qfbvmmffr9r317gl1rqg36nijwzsklkjgks4fq";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "http://yapsy.sourceforge.net/";
|
|
description = "Yet another plugin system";
|
|
license = licenses.bsd0;
|
|
};
|
|
|
|
}
|