mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
40 lines
753 B
Nix
40 lines
753 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytest
|
|
, six
|
|
, enum34
|
|
, pathlib
|
|
, ordereddict
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyScss";
|
|
version = "1.3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = "pyScss";
|
|
owner = "Kronuz";
|
|
rev = version;
|
|
sha256 = "0701hziiiw67blafgpmjhzspmrss8mfvif7fw0rs8fikddwwc9g6";
|
|
};
|
|
|
|
checkInputs = [ pytest ];
|
|
|
|
propagatedBuildInputs = [ six ]
|
|
++ (stdenv.lib.optionals (pythonOlder "3.4") [ enum34 pathlib ])
|
|
++ (stdenv.lib.optionals (pythonOlder "2.7") [ ordereddict ]);
|
|
|
|
checkPhase = ''
|
|
py.test
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A Scss compiler for Python";
|
|
homepage = "https://pyscss.readthedocs.org/en/latest/";
|
|
license = licenses.mit;
|
|
};
|
|
|
|
}
|