blob: b9c84339a678a637808da0dadae324d29e1ecbbe (
plain)
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
|
{
buildPythonPackage,
fetchPypi,
lib,
}:
buildPythonPackage rec {
pname = "stringcase";
version = "1.2.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "023hv3gknblhf9lx5kmkcchzmbhkdhmsnknkv7lfy20rcs06k828";
};
# PyPi package does not include tests.
doCheck = false;
meta = {
homepage = "https://github.com/okunishinishi/python-stringcase";
description = "Convert string cases between camel case, pascal case, snake case etc…";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ alunduil ];
};
}
|